home *** CD-ROM | disk | FTP | other *** search
/ Master Visual Basic 3 / Master Visual Basic 3 (SAMS Publishing) (1994).ISO / mvprog / original / ch12 / source.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-04-08  |  1.7 KB  |  58 lines

  1. VERSION 2.00
  2. Begin Form frmSource 
  3.    BackColor       =   &H00FF0000&
  4.    Caption         =   "The SOURCE Program"
  5.    ClientHeight    =   2460
  6.    ClientLeft      =   1095
  7.    ClientTop       =   1485
  8.    ClientWidth     =   7365
  9.    Height          =   2865
  10.    Icon            =   SOURCE.FRX:0000
  11.    Left            =   1035
  12.    LinkMode        =   1  'Source
  13.    LinkTopic       =   "Form1"
  14.    ScaleHeight     =   2460
  15.    ScaleWidth      =   7365
  16.    Top             =   1140
  17.    Width           =   7485
  18.    Begin CommandButton cmdExit 
  19.       Caption         =   "E&xit"
  20.       Height          =   495
  21.       Left            =   120
  22.       TabIndex        =   1
  23.       Top             =   1920
  24.       Width           =   1215
  25.    End
  26.    Begin TextBox txtToDest 
  27.       Height          =   855
  28.       Left            =   360
  29.       MultiLine       =   -1  'True
  30.       ScrollBars      =   3  'Both
  31.       TabIndex        =   0
  32.       Top             =   960
  33.       Width           =   6735
  34.    End
  35.    Begin Label Label1 
  36.       Alignment       =   2  'Center
  37.       Caption         =   "The following text goes to DEST:"
  38.       FontBold        =   -1  'True
  39.       FontItalic      =   0   'False
  40.       FontName        =   "MS Sans Serif"
  41.       FontSize        =   13.5
  42.       FontStrikethru  =   0   'False
  43.       FontUnderline   =   0   'False
  44.       Height          =   495
  45.       Left            =   360
  46.       TabIndex        =   2
  47.       Top             =   240
  48.       Width           =   6735
  49.    End
  50. Option Explicit
  51. Sub cmdExit_Click ()
  52.     End
  53. End Sub
  54. Sub Form_Load ()
  55.     ' Set the topic of the DDE
  56.     frmSource.LinkTopic = "Dummy"
  57. End Sub
  58.